home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000251_news@newsmaster….columbia.edu _Fri May 30 19:19:54 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA11288
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 30 May 1997 19:19:53 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA04674
  7.     for kermit.misc@watsun; Fri, 30 May 1997 19:19:53 -0400 (EDT)
  8. Newsgroups: comp.protocols.kermit.misc
  9. Path: news.columbia.edu!panix!cam-news-hub1.bbnplanet.com!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!ix.netcom.com!georgeb
  10. From: georgeb@netcom.com (George H. Bosworth)
  11. Subject: Disconnect and [D]TR Problems
  12. Message-ID: <georgebEB0LD3.9p0@netcom.com>
  13. Followup-To: Poster
  14. Date: Fri, 30 May 1997 22:05:26 GMT
  15. Lines: 46
  16. Sender: georgeb@netcom5.netcom.com
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:7101
  18.  
  19. I use Kermit 6.0.192 on Solaris 2.5 with a Supra FAXModem 288.
  20.  
  21. After logging out from a remote connection, the modem sends NO
  22. CARRIER, and I Cntrl-\-c out, and quit Kermit. Quickly the TR (DTR)
  23. light comes on on the modem.  How can I:
  24.  
  25.     1. Disconnect more cleanly
  26.  
  27.     2. Turn off the TR light during the exiting.
  28.  
  29. -- George
  30.  
  31. /users/georgeb 245 % more .kermit
  32. # Kermit initialization file by George
  33. set prompt Susan-Kermit>
  34. set quiet on
  35. set line /dev/term/b  ; Modem device
  36. set modem type supra  ; Is Supra FAXmodem 288
  37. set modem hangup-method rs232-signal ; One of 2 options
  38. set speed 38400       ; Supra is max 28,800
  39. set parity none       ; For binary files
  40. set terminal bytesize 8         
  41. set file type binary  ; To transfer binaries OK
  42. set file name literal ; Preserve orignal name
  43. set receive packet-length 2048  ; Size of one packet
  44. set send    packet-length 2048  ; Ditto, other way
  45. set window 4          ; Send 4 packets before reply
  46. set block-check 2     ; Set 2-char, 12-bit checksum
  47. #
  48. set dial retries 4
  49. define dialit wait 1, dial \%1, xif success { echo , connect, stop, hangup }
  50. define netcom    do dialit       328-9940
  51.  
  52. /users/georgeb 246 % kermit
  53. C-Kermit 6.0.192, 6 Sep 96, for Solaris 2.x
  54. Susan-Kermit>set carrier off
  55. Susan-Kermit>connect
  56. OK
  57. at&v
  58. ACTIVE PROFILE:
  59. B1 E1 L2 M1 N1 Q0 T V1 W0 X4 Y0 %C3 %E0 %G1 -K0 &C1 &D2 &K0 &Q5 &R1 &S0 &X0 &Y0
  60. S00:000 S01:000 S02:043 S03:013 S04:010 S05:008 S06:002 S07:033 S08:002 S09:012
  61. S10:014 S11:095 S12:050 S18:000 S23:063 S25:005 S26:001 S36:007 S37:000 S38:020
  62. S40:104 S41:131 S44:131 S46:138 S48:007 S91:010 S95:000 S109:062 S110:014 
  63.  
  64.